The following piece of code has two sections. The first section parses
in 18 seconds on this computer (p3 650m). The second section parses in
only 9 seconds!!
/*
#macro Inc ( Iter )
#local Iter = Iter + 1;
#end
#local I = 0;
#while ( I < 100000 )
Inc ( I )
#end
*/
/*
#local I = 0;
#while ( I < 100000 )
#local I = I + 1;
#end
*/
-Shay
Post a reply to this message
|